home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_04 / saks / xrt.h < prev    next >
C/C++ Source or Header  |  1994-02-09  |  402b  |  33 lines

  1.  
  2. ----------
  3.  
  4. Listing 2 - xrt class definition
  5.  
  6. //
  7. // xrt.h - cross-reference table interface
  8. //
  9. #ifndef XRT_H_INCLUDED
  10. #define XRT_H_INCLUDED
  11.  
  12. #include "lns.h"
  13.  
  14. class treenode;
  15.  
  16. class xrt
  17.     {
  18. public:
  19.     xrt();
  20.     ~xrt();
  21.     void add(const char *w, unsigned n);
  22.     void print();
  23. private:
  24.     treenode *root;
  25.     };
  26.  
  27. inline xrt::xrt() : root(0)
  28.     {
  29.     }
  30.  
  31. #endif
  32.  
  33.